home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / vhost_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  74 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(12094);
  8.  script_bugtraq_id(9860);
  9.  
  10.  script_version("$Revision: 1.4 $");
  11.  name["english"] = "vHost Cross-Site scripting vulnerabilities";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running a version of vHost which is older than 3.1.0r1.
  16.  
  17. There is a cross site scripting vulnerability in this version which may
  18. allow an attacker to steal the cookies of the legitimate users of this site.
  19.  
  20. Solution : Upgrade to the latest version of this software
  21. Risk factor : High";
  22.  
  23.  
  24.  script_description(english:desc["english"]);
  25.  
  26.  summary["english"] = "version test for vHost";
  27.  
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  33.  family["english"] = "CGI abuses";
  34.  script_family(english:family["english"]);
  35.  script_dependencie("find_service.nes", "http_version.nasl");
  36.  script_require_ports("Services/www", 80);
  37.  exit(0);
  38. }
  39.  
  40. # Check starts here
  41.  
  42. include("http_func.inc");
  43. include("http_keepalive.inc");
  44.  
  45. function check(dir)
  46. {
  47.   if ( defined_func("unixtime") ) time = unixtime();
  48.   else time = "1021231234";
  49.   req = http_get(item:dir + "/vhost.php?action=logout&time=" + time, port:port);
  50.   res = http_keepalive_send_recv(port:port, data:req);
  51.   if ( res == NULL ) exit(0);
  52.  
  53.   if ("<!-- vhost" >< res )
  54.    {
  55.     if ( egrep(pattern:"<!-- vhost ([12]\.|3\.([0-9][^0-9]|10[^r]))", string:res) ) {
  56.     security_warning(port);
  57.     exit(0);
  58.     }
  59.    }
  60.  return(0);
  61. }
  62.  
  63. port = get_http_port(default:80);
  64.  
  65. if(!get_port_state(port))exit(0);
  66. if(!can_host_php(port:port))exit(0);
  67.  
  68.  
  69. foreach dir ( cgi_dirs() )
  70. {
  71.  check(dir:dir);
  72. }
  73.